home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1999-05-24 | 1.1 KB | 44 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "cMDIChild2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- '----------------------------------------------------------------------
- 'MDIChildTest
- 'Copyright (c) Millennium Software AS
- 'Redistribution of Code Prohibited
- '
- 'Finished: 02.03.99 17:59:45
- 'Author: Morten Ladstein (morten@millennium.no)
- 'Company: Millennium Software AS
- 'Web: http://www.millennium.no
- 'Description:
- 'Comments:
- '----------------------------------------------------------------------
-
- Option Explicit
-
- Dim frm As MDIChild2Form
-
- Public Sub show(hWndMDIParent&, Caption$)
- Set frm = New MDIChild2Form
- Load frm
- frm.mdiChildDll.hWndMDIParent = hWndMDIParent
- frm.Caption = Caption
- frm.mdiChildDll.Load
- frm.mdiChildDll.UserSpecifiedID = "User Specified ID: " & Caption
- End Sub
-
- Public Sub Destroy()
- Unload frm
- End Sub
-
-